#coding:utf-8

#引数無し関数の定義 
def myfunction():
  print("Good Morning.")
  print("おはようございます!")
  
#関数の呼出し
myfunction()
実行結果